/* ================= MOBILE HERO FIX ================= */
@media (max-width: 768px) {

  /* Remove desktop split background */
  .hero-light {
    background: #f8f5f2;   /* single clean background */
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Stack content properly */
  .hero-light .row {
    text-align: center;
  }

  /* Left text spacing */
  .hero-light h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-light p {
    font-size: 0.95rem;
  }

  /* Buttons center */
  .hero-light .btn {
    margin-bottom: 10px;
  }

  /* Image wrapper spacing */
  .hero-image-wrap {
    margin-top: 25px;
  }

  /* Image sizing – KEY FIX */
  .hero-image {
    max-width: 260px;   /* smaller & balanced */
    width: 100%;
    height: auto;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .hero-light h1 {
    font-size: 1.6rem;
  }

  .hero-image {
    max-width: 230px;
  }
}

